home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Applications 1996 May / SGI IRIX 6.2 Applications 1996 May.iso / dist / impr_dev.idb / usr / impressario / src / drivers / phandler / Makefile.z / Makefile
Makefile  |  1996-05-06  |  2KB  |  55 lines

  1. #
  2. #**************************************************************************
  3. #*                                      *
  4. #*           Copyright (c) 1991 Silicon Graphics, Inc.              *
  5. #*            All Rights Reserved                    *
  6. #*                                      *
  7. #*         THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI             *
  8. #*                                      *
  9. #* The copyright notice above does not evidence any actual of intended    *
  10. #* publication of such source code, and is an unpublished work by Silicon *
  11. #* Graphics, Inc. This material contains CONFIDENTIAL INFORMATION that is *
  12. #* the property of Silicon Graphics, Inc. Any use, duplication or         *
  13. #* disclosure not specifically authorized by Silicon Graphics is strictly *
  14. #* prohibited.                                  *
  15. #*                                      *
  16. #* RESTRICTED RIGHTS LEGEND:                          *
  17. #*                                      *
  18. #* Use, duplication or disclosure by the Government is subject to         *
  19. #* restrictions as set forth in subdivision (c)(1)(ii) of the Rights in   *
  20. #* Technical Data and Computer Software clause at DFARS 52.227-7013,      *
  21. #* and/or in similar or successor clauses in the FAR, DOD or NASA FAR     *
  22. #* Supplement. Unpublished - rights reserved under the Copyright Laws of  *
  23. #* the United States. Contractor is SILICON GRAPHICS, INC., 2011 N.       *
  24. #* Shoreline Blvd., Mountain View, CA 94039-7311                          *
  25. #**************************************************************************
  26. #*
  27. #* Makefile (user.makefile) - phandler, the generic parallel port
  28. #*                  status driver
  29. #*
  30. #* $Revision: 1.3 $
  31. #*
  32. #*
  33. #**************************************************************************
  34.  
  35. include /usr/include/make/commondefs
  36.  
  37. CFILES = phandler.c
  38.  
  39. TARGETS = phandler
  40.  
  41. CVERSION = -xansi
  42.  
  43. OPTIMIZER = 
  44.  
  45. LLDLIBS = -lpod
  46.  
  47. default all: $(TARGETS)
  48.  
  49. include $(COMMONRULES)
  50.  
  51. $(TARGETS): $(CFILES)
  52.     $(CCF) -o $@ $(CFILES) $(LDFLAGS)
  53.  
  54. install: default
  55.